home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d22 / cedar100.arc / CEDAR.CTL next >
Text File  |  1989-07-24  |  3KB  |  115 lines

  1. ; See the documentation file CEDAR.DOC for more information.
  2. ;
  3. ;    The format for the configuration file is simple.
  4. ;
  5. ;    To set the file extention/color combinations you list the file
  6. ;    extention including the period, followed by the number for the
  7. ;    color.  For Example:
  8. ;
  9. ;       .exe 12  ; light red on black
  10. ;       .com 12
  11. ;       .bat 12
  12. ;       .doc 13  ; light magenta on black
  13. ;       .txt 13
  14. ;
  15. ;    Everything after a semicolon (;) on a line is a comment and will
  16. ;    be ignored.
  17. ;
  18. ;    The number representing the color is the color is the standard
  19. ;    color attributes for a CGA display.
  20. ;
  21. ;    The standard colors are:
  22. ;
  23. ;    COLOR       FOREGROUND     BACKGROUND
  24. ;    -----       ----------     ----------
  25. ;    Black           0                0
  26. ;    Blue            1               16
  27. ;    Green           2               32
  28. ;    Cyan            3               48
  29. ;    Red             4               64
  30. ;    Magenta         5               80
  31. ;    Brown           6               96
  32. ;    White           7              112
  33. ;    Grey            8
  34. ;    Light Blue      9
  35. ;    Light Green    10
  36. ;    Light Cyan     11
  37. ;    Light Red      12
  38. ;    Light Magenta  13
  39. ;    Yellow         14
  40. ;    Bright White   15
  41. ;
  42. ;    To Get the desired foreground, background colors add the two
  43. ;    numbers together.  For example the number for white letters on a
  44. ;    blue background is 7 (White) + 16 (Blue) = 23 (White on Blue).
  45. ;    If you then add 128 to this number the colors will flash on and
  46. ;    off.
  47. ;
  48. ;    Please note that in tha ansi mode of output the foreground color
  49. ;    only go up to 8.  If necessary the foreground color will be
  50. ;    lowered automatically.
  51. ;
  52. ;
  53. ;    If you run the program SEECOLOR.EXE it will display a table
  54. ;    of all the color combinations and you can clearly see what they
  55. ;    look like.
  56. ;
  57. ;    There are some special file extention rules.
  58. ;
  59. ;       <dir>  27 ; Will display directories in color 27.
  60. ;       #def   33 ; Will display the title borders, footers and
  61. ;                 ; unknown file types in color 33.
  62. ;
  63. ;    The command #swi allows you to set the defualt command line
  64. ;    switches.  These switches will be used if no switches are
  65. ;    specified when running the program.  For example:
  66. ;
  67. ;        #swi /2p
  68. ;
  69. ;    CEDAR will run as if you had typed.
  70. ;
  71. ;        CEDAR /2p
  72. ;
  73. ;    When using the #swi command you must have all your options as
  74. ;    part of one switch.  For Example you must always use
  75. ;
  76. ;        #swi /ys-
  77. ;
  78. ;    instead of
  79. ;
  80. ;        #swi /y /s-
  81. ;
  82. ;    You can set up to 200 extentions in the registered version
  83. ;    and 20 in the shareware release version.
  84. ;
  85. ;
  86.  
  87. #def  7   ; set defualt color:  white on black
  88. #swi /yne ; set the defualt switches, sort directories first (y),
  89.           ; then name (n), then extention (e)
  90.  
  91. <dir> 10  ; directories:  light green on black
  92.  
  93. ;  executable files:  light red on black
  94. .exe 12
  95. .com 12
  96. .bat 12
  97.  
  98. ; program files:  light cyan on black
  99. .c   11
  100. .h   11
  101. .bas 11
  102. .pas 11
  103.  
  104. ; Text files light:  magenta on black
  105. .doc 13
  106. .txt 13
  107.  
  108. ; different types of archives:  light blue on black
  109. .arc 9
  110. .pak 9
  111. .zoo 9
  112. .zip 9
  113.  
  114.  
  115.